home *** CD-ROM | disk | FTP | other *** search
/ Champak 45 / Vol 45.iso / games / escape.swf / scripts / frame_6 / DoAction.as
Encoding:
Text File  |  2005-08-23  |  241 b   |  15 lines

  1. this.stop();
  2. this.onEnterFrame = function()
  3. {
  4.    if(Key.isDown(82))
  5.    {
  6.       mySound.stop();
  7.       _root.gotoAndStop("start");
  8.    }
  9.    if(_global.clr == 1)
  10.    {
  11.       mySound.stop();
  12.       _root.gotoAndPlay("clear");
  13.    }
  14. };
  15.